-
Notifications
You must be signed in to change notification settings - Fork 372
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add plot method to (most) DataModules #814
Conversation
54c887d
to
e4a1c02
Compare
Okay, I backed out a few datamodule plot methods that were broken. Those can be added one at a time in future PRs by anyone who cares. I'm still hoping to add plot methods to most datamodules, even if normalization may make visualization a bit broken. I'm not really sure what to do about those other than undo datamodule-specific normalizations inside datamodule plot methods before passing to dataset plot methods. |
Now that (almost) all of our Datasets have a plot method, our DataModules should too. This PR adds a plot method to all DataModules except:
all of which require custom logic to undo transforms. This can be saved for an adventurous contributor in a follow-up PR.